home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / ACORNUSERS / CBSA / EDUCATION / LOADER / h / IconData < prev    next >
Text File  |  1997-12-07  |  515b  |  38 lines

  1.  
  2. //-----------------------------------
  3. //             IconData.h
  4. //-----------------------------------
  5.  
  6.  
  7. #ifndef IconData_H
  8. #define IconData_H
  9.  
  10. union IconData
  11. {
  12.   char text[12];
  13.   char sprite_name[12];
  14.   struct
  15.   {
  16.     char *text;
  17.     char *filter;
  18.     int text_lenght;
  19.   } indirect_text;
  20.   struct
  21.   {
  22.     union
  23.     {
  24.     int *sprite;
  25.     char *sprite_name;
  26.     };
  27.     int *sprite_area;
  28.     int isname;
  29.   }indirect_sprite;
  30.   struct
  31.   {
  32.     char *text;
  33.     char *filter;
  34.     int text_lenght;
  35.   }indirect;
  36. };
  37.  
  38. #endif